###############################################
# Xenomorph Species Rights - Slavery Types
# Pass 15: Streamlined to 2 types (Host Stock + Breeding Stock).
# Removed: Ovomorph Incubation, Biomass Livestock, Genetic Reservoir.
# Renamed: Royal Broodstock -> Breeding Stock.
# Place in: common/species_rights/slavery_types/xenomorph_species_rights_slavery_types.txt
###############################################

# Host Stock — preserved live for food and host implantation.
# Has a passive necrophage rate via xenocivic.2: every year on each planet
# with Host Stock pops, multiple pops may auto-convert into Xenomorphs.
slavery_xenomorph_host_stock = {
	pop_group_modifier = {
		pop_happiness = -0.25
		pop_political_power = -0.75
		pop_bonus_workforce_mult = -0.10
		planet_jobs_food_produces_mult = 0.15
	}

	pop_tooltip = XENOMORPH_HOST_STOCK
	pop_status_frame = 6

	potential = {
		exists = from
		from = { is_xenomorph_empire = yes }
	}

	allow = {
		hidden_trigger = { exists = from }
		is_sapient = yes
		NOT = { is_same_species = from }
		NOR = {
			has_trait = trait_mechanical
			has_trait = trait_machine_unit
		}
	}

	ai_will_do = {
		factor = 80
	}
}

# Breeding Stock — elite reproductive pops (renamed from Royal Broodstock).
# Highest offspring/egg/sex output of any slavery type. Massive normal-work debuff.
# Selective purge survivors are auto-assigned to this slavery type after threshold.
slavery_xenomorph_breeding_stock = {
	pop_group_modifier = {
		pop_happiness = -0.40
		pop_political_power = -0.85
		pop_bonus_workforce_mult = -0.50
		planet_lv_sex_jobs_produces_mult = 0.50
		logistic_growth_mult = 0.25
		planet_jobs_unity_produces_mult = 0.10

	}

	pop_tooltip = XENOMORPH_BREEDING_STOCK
	pop_status_frame = 6

	potential = {
		exists = from
		from = { is_xenomorph_empire = yes }
	}

	allow = {
		hidden_trigger = { exists = from }
		is_sapient = yes
		NOT = { is_same_species = from }
		NOR = {
			has_trait = trait_mechanical
			has_trait = trait_machine_unit
		}
	}

	ai_will_do = {
		factor = 40
	}
}

# Pleasure-Conditioned Stock — pacified through pheromonal/pleasure conditioning.
# Unlocked by tech_xenomorph_pleasure_compliance_conditioning. These pops are
# kept docile: far less deviancy and crime, modestly higher amenities output,
# at the cost of being poor general labour.
slavery_xenomorph_pleasure_conditioned = {
	pop_group_modifier = {
		pop_happiness = 0.10
		pop_political_power = -0.75
		pop_bonus_workforce_mult = -0.25
		pop_crime_mult = -0.50
		planet_jobs_amenities_produces_mult = 0.15
	}

	pop_tooltip = XENOMORPH_PLEASURE_CONDITIONED
	pop_status_frame = 6

	potential = {
		exists = from
		from = {
			is_xenomorph_empire = yes
			has_technology = tech_xenomorph_pleasure_compliance_conditioning
		}
	}

	allow = {
		hidden_trigger = { exists = from }
		is_sapient = yes
		NOT = { is_same_species = from }
		NOR = {
			has_trait = trait_mechanical
			has_trait = trait_machine_unit
		}
	}

	ai_will_do = {
		factor = 50
	}
}
